def resolve_incident(self, device_id, message):
url = "https://events.pagerduty.com/v2/enqueue"
print(url)
headers = {
"Accept": "application/vnd.pagerduty+json;version=2",
"Authorization": "Token token={}".format(self.pagerDuty_api_key),
"From": "xys@assa.com",
"Content-Type": "application/json"
}
payload = {
"routing_key": self.pagerDuty_integration_key,
"dedup_key": device_id,
"event_action": "acknowledge"
}
r = requests.post(url, data=json.dumps(payload), headers=headers)
if r.status_code == 200:
print(r.json)
return True
else:
print(r.status_code)
print(r.text)
return False
This results in
202
{“status”:“success”,“message”:“Event processed”,“dedup_key”:“000111222”}
But the incident is not getting resolved.
I tried using the incident api update, but i get
400
{“error”:{“message”:“Arguments Caused Error”,“code”:2002,“errors”:[“Open incident with matching dedup key already exists on this service”]}}
False
how could i resolve the incident using API?